home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / EdPageProps.js < prev    next >
Encoding:
JavaScript  |  2004-06-09  |  7.3 KB  |  250 lines

  1. /* 
  2.  * The contents of this file are subject to the Netscape Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/NPL/
  6.  *  
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  *  
  12.  * The Original Code is Mozilla Communicator client code, released
  13.  * March 31, 1998.
  14.  * 
  15.  * The Initial Developer of the Original Code is Netscape
  16.  * Communications Corporation. Portions created by Netscape are
  17.  * Copyright (C) 1998-1999 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  * 
  20.  * Contributor(s): 
  21.  *    Charles Manske (cmanske@netscape.com)
  22.  */
  23.  
  24. var gNewTitle = "";
  25. var gAuthor = "";
  26. var gDescription = "";
  27. var gAuthorElement;
  28. var gDescriptionElement;
  29. var gRootElement;
  30. var gInsertNewAuthor = false;
  31. var gInsertNewDescription = false;
  32. var gTitleWasEdited = false;
  33. var gAuthorWasEdited = false;
  34. var gDescWasEdited = false;
  35. var gTemplateState = false;
  36. var gLanguage;
  37. var gDirection;
  38.  
  39. //Cancel() is in EdDialogCommon.js
  40. // dialog initialization code
  41. function Startup()
  42. {
  43.   var editor = GetCurrentEditor();
  44.   if (!editor)
  45.   {
  46.     window.close();
  47.     return;
  48.   }
  49.  
  50.   gDialog.PageLocation       = document.getElementById("PageLocation");
  51.   gDialog.PageModDate        = document.getElementById("PageModDate");
  52.   gDialog.TitleInput         = document.getElementById("TitleInput");
  53.   gDialog.AuthorInput        = document.getElementById("AuthorInput");
  54.   gDialog.DescriptionInput   = document.getElementById("DescriptionInput");
  55.   gDialog.isTemplate         = document.getElementById("isTemplate");
  56.   gDialog.isFromTemplate     = document.getElementById("isFromTemplate");
  57.   gDialog.active_languages   = document.getElementById("active_languages");
  58.   gDialog.useCustomDirection = document.getElementById("useCustomDirection");
  59.  
  60.   // Default string for new page is set from DTD string in XUL,
  61.   //   so set only if not new doc URL
  62.   var location = GetDocumentUrl();
  63.   var lastmodString = GetString("Unknown");
  64.  
  65.   if (!IsUrlAboutBlank(location))
  66.   {
  67.     // NEVER show username and password in clear text
  68.     gDialog.PageLocation.setAttribute("value", StripPassword(location));
  69.  
  70.     // Get last-modified file date+time
  71.     // TODO: Convert this to local time?
  72.     var lastmod;
  73.     try {
  74.       lastmod = editor.document.lastModified;  // get string of last modified date
  75.     } catch (e) {}
  76.     // Convert modified string to date (0 = unknown date or January 1, 1970 GMT)
  77.     if(Date.parse(lastmod))
  78.     {
  79.       try {
  80.         const nsScriptableDateFormat_CONTRACTID = "@mozilla.org/intl/scriptabledateformat;1";
  81.         const nsIScriptableDateFormat = Components.interfaces.nsIScriptableDateFormat;
  82.         var dateService = Components.classes[nsScriptableDateFormat_CONTRACTID]
  83.          .getService(nsIScriptableDateFormat);
  84.  
  85.         var lastModDate = new Date();
  86.         lastModDate.setTime(Date.parse(lastmod));
  87.         lastmodString =  dateService.FormatDateTime("", 
  88.                                       dateService.dateFormatLong,
  89.                                       dateService.timeFormatSeconds,
  90.                                       lastModDate.getFullYear(),
  91.                                       lastModDate.getMonth()+1,
  92.                                       lastModDate.getDate(),
  93.                                       lastModDate.getHours(),
  94.                                       lastModDate.getMinutes(),
  95.                                       lastModDate.getSeconds());
  96.       } catch (e) {}
  97.     }
  98.   }
  99.   gDialog.PageModDate.value = lastmodString;
  100.  
  101.   gAuthorElement = GetMetaElement("author");
  102.   if (!gAuthorElement)
  103.   {
  104.     gAuthorElement = CreateMetaElement("author");
  105.     if (!gAuthorElement)
  106.     {
  107.       window.close();
  108.       return;
  109.     }
  110.     gInsertNewAuthor = true;
  111.   }
  112.  
  113.   gDescriptionElement = GetMetaElement("description");
  114.   if (!gDescriptionElement)
  115.   {
  116.     gDescriptionElement = CreateMetaElement("description");
  117.     if (!gDescriptionElement)
  118.       window.close();
  119.  
  120.     gInsertNewDescription = true;
  121.   }
  122.  
  123.   gRootElement = GetCurrentEditor().rootElement;
  124.  
  125.   InitDialog();
  126.  
  127.   SetTextboxFocus(gDialog.TitleInput);
  128.  
  129.   SetWindowLocation();
  130. }
  131.  
  132. function InitDialog()
  133. {
  134.   gDialog.TitleInput.value = GetDocumentTitle();
  135.  
  136.   var gAuthor = TrimString(gAuthorElement.getAttribute("content"));
  137.   if (!gAuthor)
  138.   {
  139.     // Fill in with value from editor prefs
  140.     var prefs = GetPrefs();
  141.     if (prefs) 
  142.       gAuthor = prefs.getCharPref("editor.author");
  143.   }
  144.   gDialog.AuthorInput.value = gAuthor;
  145.   gDialog.DescriptionInput.value = gDescriptionElement.getAttribute("content");
  146.  
  147.   if (CurrentDocumentIsTemplateRef())
  148.   {
  149.     gDialog.isTemplate.setAttribute("hidden", "true"); 
  150.   }
  151.   else
  152.   {
  153.     gDialog.isFromTemplate.setAttribute("hidden", "true");
  154.     gDialog.isTemplate.checked = CurrentDocumentIsTemplate();
  155.   }
  156.  
  157.   if (gRootElement.hasAttribute("dir"))
  158.   {
  159.     gDialog.useCustomDirection.value = gRootElement.getAttribute("dir");
  160.   }
  161.   var cssDirection = gRootElement.style.getPropertyValue("direction");
  162.   if (cssDirection)
  163.   {
  164.     gDialog.useCustomDirection.value = cssDirection;
  165.   }
  166.  
  167.   if (gRootElement.parentNode.hasAttribute("lang"))
  168.   {
  169.     gDialog.active_languages.value = gRootElement.parentNode.getAttribute("lang");
  170.   }
  171. }
  172.  
  173. function TextboxChanged(ID)
  174. {
  175.   switch(ID)
  176.   {
  177.     case "TitleInput":
  178.       gTitleWasEdited = true;
  179.       break;
  180.     case "AuthorInput":
  181.       gAuthorWasEdited = true;
  182.       break;
  183.     case "DescriptionInput":
  184.       gDescWasEdited = true;
  185.       break;
  186.   }
  187. }
  188.  
  189. function ValidateData()
  190. {
  191.   gNewTitle = TrimString(gDialog.TitleInput.value);
  192.   gAuthor = TrimString(gDialog.AuthorInput.value);
  193.   gDescription = TrimString(gDialog.DescriptionInput.value);
  194.   gTemplateState = gDialog.isTemplate.checked;
  195.   gLanguage = gDialog.active_languages.value;
  196.   gDirection = gDialog.useCustomDirection.value;
  197.   return true;
  198. }
  199.  
  200. function onAccept()
  201. {
  202.   if (ValidateData())
  203.   {
  204.     var editor = GetCurrentEditor();
  205.     editor.beginTransaction();
  206.  
  207.     // Set title contents even if string is empty
  208.     //  because TITLE is a required HTML element
  209.     if (gTitleWasEdited)
  210.       SetDocumentTitle(gNewTitle);
  211.     
  212.     if (gAuthorWasEdited)
  213.       SetMetaElementContent(gAuthorElement, gAuthor, gInsertNewAuthor, false);
  214.  
  215.     if (gDescWasEdited)
  216.       SetMetaElementContent(gDescriptionElement, gDescription, gInsertNewDescription, false);
  217.  
  218.     var isTemplate = CurrentDocumentIsTemplate();
  219.     if (gTemplateState && !isTemplate)
  220.     {
  221.       MakeDocumentBecomeATemplate();
  222.     }
  223.     else if (!gTemplateState && isTemplate)
  224.     {
  225.       MakeTemplateBecomeANormalDocument();
  226.     }
  227.  
  228.     if (gLanguage)
  229.       gRootElement.parentNode.setAttribute("lang", gLanguage);
  230.     else if (gRootElement.parentNode.hasAttribute("lang"))
  231.       gRootElement.parentNode.removeAttribute("lang");
  232.  
  233.     if (gDirection && gDirection != "none")
  234.       editor.setAttributeOrEquivalent(gRootElement, "dir", gDirection, false);
  235.     else
  236.       editor.removeAttributeOrEquivalent(gRootElement, "dir", false);
  237.  
  238.     editor.endTransaction();
  239.  
  240.     SaveWindowLocation();
  241.     return true; // do close the window
  242.   }
  243.   return false;
  244. }
  245.  
  246. function ChooseLanguage()
  247. {
  248.   window.openDialog("chrome://communicator/content/pref/pref-languages-add.xul","_blank","modal,chrome,centerscreen,titlebar", "addlangwindow");
  249. }
  250.